CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - C 链表

搜索资源列表

  1. 用C++完成的双链表源代码

    0下载:
  2. 用C++完成的双链表源代码-completion of the C-List source code
  3. 所属分类:数值算法/人工智能

    • 发布日期:2008-10-13
    • 文件大小:6110
    • 提供者:link
  1. 使用动态链表完成一个简单的商品库存信息管理系统。

    1下载:
  2. create:接收用户输入的商品号和商品名称的信息,建立链表;库存初始化为0,没有进货之前不允许销售;商品号为0表示用户输入结束。本函数用于初始化,如果第二次被调用的时候,首先要执行destroy清除旧链表。 destroy:给定链表的头指针,删除链表的所有节点,并释放相应的空间。本函数在程序退出前应至少被调用一次。在调用此函数前,必须给予用户提示,使用户在删除前有反悔的机会。 sell:商品销售,由参数传入商品号和销售数量。如果不存在给定商品号的商品或销售数量大于相应商品的库存则出错;否则
  3. 所属分类:文档资料

  1. 实现哈希表,链表,与数据结构无关

    0下载:
  2. 因工作原因,需要实现数据的快速查找与维护,因为是用C语言实现,所以写了一个通用的算法,实现了与数据结构无关。当时这一部分用在了一个实时交通信息上。 有问题与我联系 sulongvc@163.com
  3. 所属分类:源码下载

    • 发布日期:2011-11-27
    • 文件大小:11708
    • 提供者:sulong1234
  1. dynsarray

    0下载:
  2. 本代码提供对动态数组的支持,在内存中程序将数据分块存放,避免了大块内存的申请。同时,与普通的双向链表不同,本代码提供了对内部数据的快速索引,大大提高了数据访问速度-The code provides for dynamic array support program in memory data block storage, to avoid the large memory applications. At the same time, with ordinary two-way differ
  3. 所属分类:

    • 发布日期:2017-11-30
    • 文件大小:7130
    • 提供者:温馨
  1. register

    0下载:
  2. 一个作业题:链表的建立,查找。-An operating title: the establishment list to find.
  3. 所属分类:

    • 发布日期:2017-11-22
    • 文件大小:2209
    • 提供者:shijijiang
  1. 通讯录.txt

    0下载:
  2. 这是一个很简单的C语言程序,有链表编的。-This is a very simple C language program, a series of the Chain.
  3. 所属分类:Communication

    • 发布日期:2017-11-11
    • 文件大小:2112
    • 提供者:无奈
  1. bookManager

    0下载:
  2. C++链表实现的简单图书管理系统,对学习链表有帮助-C++ Chain to achieve a simple library management system, helpful in learning list
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-26
    • 文件大小:20826
    • 提供者:张图
  1. datastruct_example

    0下载:
  2. 本人讲授数据结构课程时的所写的示例程序,结构清晰规范,有注释,全部可编译运行,包括如下代码: 长整数:ch0_bigint2.c 顺序表的实现:ch2_stable.c 链表的实现ch2_ltable.c 合并两个有序表:ch2_stable_merge.c 表达式计算:ch3_express.c 队列的链式实现:ch3_lqueue.c 栈的链式实现:ch3_lstack.c 迷宫求解:ch3_maze.c 队列的顺序实现:ch3_squeue.c
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:14766
    • 提供者:kk.h
  1. C++数据结构代码

    0下载:
  2. 本压缩包里含有队列、链表(单链表、双链表和循环链表)、栈、队列、两个栈实现一个队列、二叉树等数据结构的C++代码实现。
  3. 所属分类:数据结构常用算法

  1. linker

    0下载:
  2. C语言中可复用的链表结构,可以不必关心用户数据结构完成链表的增删该查及排序、保存等操作,提供枚举器枚举链表数据(reusable linked list structure in C language.you don't have to worry about the user data structure, complete the additions and deletions of the list, check and sort, save, and so on, and provide
  3. 所属分类:书籍源码

    • 发布日期:2017-12-25
    • 文件大小:3072
    • 提供者:fontain
  1. 学生管理系统(链表)

    0下载:
  2. 在Dev-c++上编译的简单学生管理系统,适用于链表初学练习者(Student management system)
  3. 所属分类:书籍源码

    • 发布日期:2017-12-30
    • 文件大小:6144
    • 提供者:nht
  1. 链表

    0下载:
  2. 学习数据结构的链表操作,并编程用链表分别实现两个链表中数据的合并,并排列大小。(Learning the chain table operation of the data structure, and programming the combination of data in two linked lists with the chain table, and arrange the size.)
  3. 所属分类:其他

    • 发布日期:2018-01-07
    • 文件大小:3072
    • 提供者:VINCERXC
  1. 数据结构课设小题线性表的链式存储

    0下载:
  2. 链表是一种物理存储单元上非连续、非顺序的存储结构,数据元素的逻辑顺序是通过链表中的指针链接次序实现的。链表由一系列结点(链表中每一个元素称为结点)组成,结点可以在运行时动态生成。每个结点包括两个部分:一个是存储数据元素的数据域,另一个是存储下一个结点地址的指针域。(Linked list is a discontinuous and non sequential storage structure on physical storage unit. The logical order of da
  3. 所属分类:书籍源码

  1. 通讯录.c

    0下载:
  2. 这是基于vs2012平台编写的,采用C语言编写,采用链表结构存储,可以实现联系人姓名,电话的存储、修改、查询、删除等功能。(This is written on the platform of vs2012, written in C language and stored in linked list structure. It can achieve contacts, name, telephone storage, modification, query, delete and othe
  3. 所属分类:Windows编程

    • 发布日期:2018-01-08
    • 文件大小:1240064
    • 提供者:黑马踏天
  1. 链表-简化学生管理系统

    0下载:
  2. 通过运用链表编写的一个简化学生管理系统,是对链表的一个实践运用(A simplified student management system by using a linked list is a practical application of the linked list.)
  3. 所属分类:

    • 发布日期:2018-01-09
    • 文件大小:1024
    • 提供者:猪蕉蕉
  1. 加法运算器3

    0下载:
  2. C++语言,实现基于链表的加法运算,数据结构源程序实例(C++ language, the implementation of the addition operation based on the chain table, the data structure source program instance)
  3. 所属分类:数据结构

    • 发布日期:2018-04-21
    • 文件大小:1024
    • 提供者:玉玲珑
  1. 加减法运算器1.4

    0下载:
  2. C++语言编写,可实现基于链表的加减法运算器,数据结构源程序(The C++ language is written to implement the chain based addition and subtraction arithmetic operator, the data structure source program)
  3. 所属分类:数据结构

    • 发布日期:2018-04-21
    • 文件大小:2048
    • 提供者:玉玲珑
  1. 链表

    0下载:
  2. 整理的一些关于链表的源码,基础操作都有。(The Mid Autumn Festival cake game programming can shake out random dice the judgment according to the different situation if the winning)
  3. 所属分类:

    • 发布日期:2018-04-29
    • 文件大小:3710976
    • 提供者:杰森斯坦森
  1. 链表

    0下载:
  2. 用C语言实现的链表的先进后出实现,链表的反向实现(Using C language to achieve the advanced implementation of the linked list, the reverse implementation of the linked list.)
  3. 所属分类:Windows编程

    • 发布日期:2018-05-03
    • 文件大小:1024
    • 提供者:zhyeva
  1. 基于C语言链表实现的订餐系统

    1下载:
  2. 点餐系统,用简单的c语言链表实现。通过在主函数循环调用各个函数,从而实现对链表的连续操作,最终实现链表的新建、打印、查找、保存、读取、更新、删除等等操作,进而管理订单与用户信息,并保存用户的各种信息,方便下一次操作。链表是以订单号排序,当出现订单号相同时会有提示,并结束本次操作,成功实现一个订单号对应一个客户。(A simple ordering system)
  3. 所属分类:其他

« 1 23 4 5 6 7 8 9 10 ... 50 »
搜珍网 www.dssz.com